Chart

hello to all masters.
i wanna to make a chart from my excel data.

its Complete Question.

if there is no way,,so say to me,,how to access to Chatr'sDataset?
( trick: i wanna make default chart,then set my dataset on chart's dataset >)

Comments

  • edited 9:24PM
    wrote:
    if there is no way,,so say to me,,how to access to Chatr'sDataset?
    Hello,
    You can set dataset for all report (including for chart) by following code:
    Report report = new Report();
    DataSet dataset = new DataSet();
    report.RegisterData(dataset);
    
    And, I think it can be helpfull. RegisterData have overloads, that can accept any class, which implement the IEnumerable interface. You can create your class, which takes data from excel.

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.